curl --request GET \
--url https://api.topsort.com/public/v1/toppie/products
{
"hasMore": true,
"nextPage": "SSBzb2xlbW5seSBzd2VhciB0aGF0IEkgYW0gdXAgdG8gbm8gZ29vZAo=",
"products": [
{
"brands": [
"<string>"
],
"categories": [
"<string>"
],
"description": "<string>",
"id": "<string>",
"images": [
"<string>"
],
"name": "<string>"
}
]
}
Retrieve a list of products associated with a specific account.
curl --request GET \
--url https://api.topsort.com/public/v1/toppie/products
{
"hasMore": true,
"nextPage": "SSBzb2xlbW5seSBzd2VhciB0aGF0IEkgYW0gdXAgdG8gbm8gZ29vZAo=",
"products": [
{
"brands": [
"<string>"
],
"categories": [
"<string>"
],
"description": "<string>",
"id": "<string>",
"images": [
"<string>"
],
"name": "<string>"
}
]
}
A token provided in a previous response. If not empty, it is used to retrieve the page that follows.
Limit of products to retrieve.
0 < x <= 100
Search query for product names.
Successful Response
The response is of type object
.